From f230ee0045d0a8a3c4cdbaa10f70df7fee88324f Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Thu, 23 Jul 2009 09:00:55 +0100 Subject: [PATCH] hoplugpath.sh: fix Makefile dependency. In tools/hotplug/common/Makefile, install-scripts depends on genpath. So add its dependency. Otherwise parallel build sometimes fails as follows. genpath and install-scripts command are being run simultaneously. So When install-scripts tries to install it, it can be under creation. Signed-off-by: Isaku Yamahata --- tools/hotplug/common/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/hotplug/common/Makefile b/tools/hotplug/common/Makefile index b95bf4ee8b..35fab6daf2 100644 --- a/tools/hotplug/common/Makefile +++ b/tools/hotplug/common/Makefile @@ -22,7 +22,7 @@ build: genpath install: all install-scripts .PHONY: install-scripts -install-scripts: +install-scripts: build [ -d $(DESTDIR)$(XEN_SCRIPT_DIR) ] || \ $(INSTALL_DIR) $(DESTDIR)$(XEN_SCRIPT_DIR) set -e; for i in $(XEN_SCRIPTS); \ -- 2.30.2